*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fffaf8;
  color:#222;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.section-space{
  padding:100px 0;
}

/* TOPBAR */

.topbar{
  background:linear-gradient(90deg,#7b1e3d,#ff6b35);
  color:white;
  padding:12px 0;
  font-size:14px;
}

.topbar-flex{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.top-left,
.top-right{
  display:flex;
  gap:20px;
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-circle{
  width:60px;
  height:60px;
  border-radius:50%;
  
  
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  font-size:24px;
}

.logo-area h2{
  color:#7b1e3d;
}

.logo-area p{
  color:#d63384;
  font-size:14px;
}

.navbar ul{
  display:flex;
  gap:35px;
  list-style:none;
}

.navbar a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  transition:.3s;
}

.navbar a:hover{
  color:#d63384;
}

.menu-btn{
  display:none;
  font-size:25px;
  cursor:pointer;
}

/* HERO */
.hero{
    width: 100%;
    min-height: 100vh;
    background: #fff8fb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Main Content */
.hero-content{
    width: 100%;
    text-align: center;
}

/* Top Quote */
.top-quote h2{
    font-size: 36px;
    color: #7b1e3d;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.4;
}

/* Banner */
.hero-banner{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-banner img{
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Bottom Quote */
.bottom-quote h2{
    font-size: 30px;
    color: #f8459f;
    font-family: 'Noto Sans Telugu', sans-serif;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-btn,
.secondary-btn{
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn{
    background: linear-gradient(90deg,#ff6b35,#ffb703);
    color: white;
}

.secondary-btn{
    background: #f8459f;
    border: 2px solid white;
    color: white;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px){

    .top-quote h2{
        font-size: 24px;
    }

    .bottom-quote h2{
        font-size: 20px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin: 50px;
}

.about-image img{
  width:100%;
  border-radius:25px;
}

.section-tag{
  color:#d63384;
  font-weight:600;
}

.about-content h2{
  font-size:45px;
  margin:20px 0;
  color:#7b1e3d;
}

/* SERVICES */

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header h2{
  font-size:45px;
  color:#7b1e3d;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  background:white;
  padding:40px;
  border-radius:25px;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  border:1px solid #ffe3da;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card i{
  width:70px;
  height:70px;
  background:linear-gradient(135deg,#ff6b35,#d63384);
  color:white;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:25px;
}

/* SCHEMES */

.schemes{
  background:#fff0f4;
}

.scheme-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.scheme-card{
  background:white;
  padding:35px;
  border-radius:20px;
  text-align:center;
  font-weight:600;
  color:#7b1e3d;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* CTA */

.cta{
  padding:100px 0;
  background:linear-gradient(135deg,#7b1e3d,#ff6b35,#d63384);
}

.cta-box{
  text-align:center;
  color:white;
}

.cta h2{
  font-size:50px;
  margin-bottom:20px;
}

/* FOOTER */

.footer{
  background:#1a1a1a;
  color:white;
  padding-top:80px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer h2,
.footer h3{
  margin-bottom:20px;
}

.footer ul{
  list-style:none;
}

.footer li{
  margin-bottom:10px;
}

.footer-bottom{
  text-align:center;
  padding:25px;
  margin-top:50px;
  border-top:1px solid #333;
}

/* MOBILE */

@media(max-width:991px){

  .navbar{
    position:absolute;
    top:100%;
    left:-100%;
    width:100%;
    background:white;
    transition:.4s;
  }

  .navbar.active{
    left:0;
  }

  .navbar ul{
    flex-direction:column;
    padding:30px;
  }

  .menu-btn{
    display:block;
  }

  .hero h1{
    font-size:42px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .section-header h2,
  .about-content h2,
  .cta h2{
    font-size:34px;
  }

}
/* TOPBAR ICONS */

.top-right a{
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.top-right a:hover{
  transform: scale(1.2);
  opacity: 0.8;
}

.top-right i{
  display: inline-block;
}
/* FOOTER SOCIAL ICONS */

.footer .fa-instagram,
.footer .fa-facebook-f{
  font-size: 18px;
}

.footer a{
  text-decoration: none;
}

.footer .contact-social{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer .contact-social a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  background: linear-gradient(
    135deg,
    #ff6b35,
    #d63384
  );

  transition: all 0.3s ease;
}

.footer .contact-social a:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.35);
}